home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Games / PC-SIG World of Games (CDRM1080710) (1993).iso / 1691 / STORY < prev    next >
Text File  |  1990-09-07  |  854b  |  45 lines

  1. /*
  2.  * Sample short story idea generator script:
  3.  */
  4. story: {$type set in $place.}
  5.      ;
  6.  
  7. type!u: {A murder mystery}
  8.     | {A competition between $rivals}
  9.     | {A comedy}
  10.     | {A conflict between $rivals}
  11.     | {An adventure}
  12.     ;
  13.  
  14. place!u: {a modern industrial setting}
  15.      | {a small town}
  16.      | {old England}
  17.      | {a Carribean island retreat}
  18.      | {a space station}
  19.      | {a hospital}
  20.      ;
  21.  
  22. rivals!u: {old and young}
  23.       | {the sexes}
  24.       | {a $type2 and a $type1}
  25.       | {someone uncaring and self assured, and 
  26. someone very committed but introverted}
  27.       | {a $type1 and a $type2}
  28.       | {rich and poor}
  29.       | {siblings}
  30.       | {a $type1 and a $type2}
  31.       ;
  32.  
  33. type1!u: {mathematician}
  34.      | {engineer}
  35.      | {architect}
  36.      | {artist}
  37.      ;
  38.  
  39. type2!u: {businessman}
  40.      | {farmer}
  41.      | {plumber}
  42.      | {salesman}
  43.      | {trucker}
  44.      ;
  45.